home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 85 / CD-ROM 85 / CD-ROM 85.iso / aplic / 2sync / 2SyncSetup.exe / modules / em / panel / scripts / DefineButton2_102 / BUTTONCONDACTION on(dragOver).as next >
Encoding:
Text File  |  2002-03-20  |  598 b   |  24 lines

  1. on(dragOver){
  2.    if(type ne "nx" and type ne "pv")
  3.    {
  4.       if(eval("../:selectall") eq "1")
  5.       {
  6.          set("scrolllib:stop","1");
  7.          set("../../../codelib:rangesubbox",n);
  8.          call("../../../codelib:rangeboxsub");
  9.       }
  10.    }
  11.    else if(type eq "nx")
  12.    {
  13.       set("scrolllib:stop","1");
  14.       set("../../../codelib:rangesubbox",n - "1");
  15.       call("../../../codelib:rangeboxsub");
  16.    }
  17.    else if(type eq "pv")
  18.    {
  19.       set("scrolllib:stop","1");
  20.       set("../../../codelib:rangesubbox",n + "1");
  21.       call("../../../codelib:rangeboxsub");
  22.    }
  23. }
  24.